(isearch-highlight): Do nothing if not window-system.
authorRichard M. Stallman <rms@gnu.org>
Fri, 21 Jan 1994 04:19:19 +0000 (04:19 +0000)
committerRichard M. Stallman <rms@gnu.org>
Fri, 21 Jan 1994 04:19:19 +0000 (04:19 +0000)
lisp/isearch.el

index 11f829c3af56d6d4283572968656cdbb2b6406f8..c124942ee6969f023eb37927921cee39fd401c89 100644 (file)
@@ -4,7 +4,7 @@
 
 ;; Author: Daniel LaLiberte <liberte@cs.uiuc.edu>
 
-;; |$Date: 1994/01/16 23:40:50 $|$Revision: 1.62 $
+;; |$Date: 1994/01/19 18:45:34 $|$Revision: 1.63 $
 
 ;; This file is part of GNU Emacs.
 
@@ -1360,7 +1360,7 @@ If there is no completion possible, say so and continue searching."
 (defvar isearch-overlay nil)
 
 (defun isearch-highlight (beg end)
-  (if (null search-highlight)
+  (if (or (null search-highlight) (null window-system))
       nil
     (or isearch-overlay (setq isearch-overlay (make-overlay beg end)))
     (move-overlay isearch-overlay beg end (current-buffer))